home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / os2 / cpostsrc.arj / CPOSTOS2.MAK < prev    next >
Text File  |  1994-01-20  |  690b  |  34 lines

  1. COPTS = /ti+ /Gh+ /Q+ /C+ /W3 /Kb+ /DOPSYS_OS2V2
  2. LOPTS = /DEBUG /NOLOGO /PM:VIO /ST:20000
  3.  
  4. OBJS = \
  5.  cpost.obj\
  6.  cpostp1.obj\
  7.  cpostp2.obj\
  8.  cpostutl.obj\
  9.  cpostpar.obj\
  10.  ctok.obj\
  11.  parsearg.obj\
  12.  list.obj\
  13.  hash.obj\
  14.  tokfile.obj
  15.  
  16. LIBS = os2386
  17.  
  18. cpost.exe  : $(OBJS)
  19.     link386 $(LOPTS) $(OBJS),$@,nul,$(LIBS);
  20.  
  21. .c.obj:
  22.     icc $(COPTS) /Fo$@ $<
  23.  
  24. cpost.obj    : cpost.h  ctok.h tokfile.h parsearg.h cposthdr.h
  25. cpostp1.obj  : cpost.h  ctok.h
  26. cpostp2.obj  : cpost.h  ctok.h
  27. cpostutl.obj : cpost.h  ctok.h tokfile.h
  28. cpostpar.obj : cpost.h  ctok.h
  29. ctok.obj     : ctok.h
  30. list.obj     : list.h
  31. hash.obj     : hash.h
  32. tokfile.obj  : tokfile.h
  33. parsearg.obj : parsearg.h
  34.